home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 24 / Amiga Format AFCD24 (Feb 1998, Issue 108).iso / -in_the_mag- / emulation / uae / uae-0.4.3 / dos-null.c < prev    next >
C/C++ Source or Header  |  1998-01-20  |  989b  |  78 lines

  1.  /*
  2.   * UAE - The Un*x Amiga Emulator
  3.   *
  4.   * DOS debug only interface.
  5.   *
  6.   * (c) 1995 Bernd Schmidt
  7.   * (c) 1996 Gustavo Goedert
  8.   */
  9.  
  10. #include <stdlib.h>
  11. #include <string.h>
  12. #include <stdio.h>
  13. #include <assert.h>
  14. #include <signal.h>
  15. #include <unistd.h>
  16.  
  17. #include "config.h"
  18. #include "amiga.h"
  19. #include "options.h"
  20. #include "memory.h"
  21. #include "custom.h"
  22. #include "newcpu.h"
  23. #include "keyboard.h"
  24. #include "xwin.h"
  25. #include "keybuf.h"
  26.  
  27. long int xcolors[4096];
  28.  
  29. void (*DrawPixel)(int, xcolnr);
  30.  
  31. void prepare_line(int y, bool need_double)
  32. {
  33. }
  34.  
  35. void flush_line(void)
  36. {
  37. }
  38.  
  39. void DrawPixelNull(int x, xcolnr col)
  40. {
  41. }
  42.  
  43. void flush_screen(void)
  44. {
  45. }
  46.  
  47. bool buttonstate[3] = { false, false, false };
  48. int lastmx, lastmy;
  49. bool newmousecounters = false;
  50.  
  51. int graphics_init(void)
  52. {
  53.     DrawPixel=DrawPixelNull;
  54.     return 1;
  55. }
  56.  
  57. void graphics_leave(void)
  58. {
  59. }
  60.  
  61. void handle_events(void)
  62. {
  63. }
  64.  
  65. bool debuggable(void)
  66. {
  67.     return true;
  68. }
  69.  
  70. bool needmousehack(void)
  71. {
  72.     return false;
  73. }
  74.  
  75. void LED(int on)
  76. {
  77. }
  78.